home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / lib / tasksel / info / desktop.preinst next >
Text File  |  2009-10-22  |  439b  |  13 lines

  1. #!/bin/sh
  2. set -e
  3.  
  4. # We install the X server early on so that other packages (e.g. usplash) can
  5. # get at the resolution it configures. It is listed as part of the task,
  6. # which will take care of its removal when the task is removed.
  7. for pkg in xserver-xorg; do
  8.     if apt-cache show "$pkg" >/dev/null 2>&1 &&
  9.        ! dpkg --get-selections | egrep "^$pkg[[:space:]]+install"; then
  10.         apt-get "$@" -q -y -f install $pkg >/dev/null || true
  11.     fi
  12. done
  13.